home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / Unknown / Unknown_main.m < prev    next >
Encoding:
Text File  |  1991-01-24  |  145 b   |  11 lines

  1. #import "Unknown.h"
  2.  
  3. #import <stdlib.h>
  4.  
  5. void main(int argc, char *argv[])
  6. {
  7.     NXApp = [Unknown new];
  8.     [[NXApp run] free];
  9.     exit(EXIT_SUCCESS);
  10. }
  11.